-- card: 23933 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 10579 -- name: test 3 ----- HyperTalk script ----- on openCard global inprogress if inprogress is false then show cd fld "instruction 1" hide cd fld "ClicktoContinue" show cd btn "Check my Answers" --repeat with f = 15 to 24 --hide cd fld f --end repeat repeat with x = 1 to 5 hide cd fld ("responses" && x) end repeat end openCard on closeCard global maploc, cardloc put word 1 of the short name of this card into maploc put word 2 of the short name of this card into cardloc push card end closeCard -- part 1 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=127 top=112 right=131 bottom=210 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 1 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 2 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=126 top=160 right=176 bottom=341 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 2 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 3 (field) -- low flags: 01 -- high flags: 4000 -- rect: left=325 top=223 right=243 bottom=429 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: answer 3 ----- HyperTalk script ----- on mouseup toggleResponses end mouseup -- part 6 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=14 top=50 right=126 bottom=116 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 1 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 8 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=6 top=58 right=136 bottom=255 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 2 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 9 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=0 top=68 right=126 bottom=129 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 3 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 10 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=12 top=269 right=342 bottom=49 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 4 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 11 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=7 top=140 right=218 bottom=79 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 16 -- part name: responses 5 ----- HyperTalk script ----- on mouseup chooseResponses end mouseup -- part 7 (field) -- low flags: 81 -- high flags: 0007 -- rect: left=384 top=19 right=105 bottom=512 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: Your Responses -- part 13 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=369 top=19 right=105 bottom=385 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: Your Answers -- part 14 (field) -- low flags: 80 -- high flags: 0002 -- rect: left=15 top=8 right=53 bottom=33 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: our Answers -- part 15 (field) -- low flags: 81 -- high flags: 0002 -- rect: left=0 top=25 right=113 bottom=53 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 3 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: memoList -- part 18 (button) -- low flags: 00 -- high flags: A003 -- rect: left=132 top=312 right=339 bottom=274 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: Check my answers ----- HyperTalk script ----- on mouseUp global memolist, testNumber, inProgress put "" into memolist set the cursor to busy put 1 into r repeat with r = 1 to the number of lines in cd fld "Our Answers" if line r of cd fld "your Responses" is "" then answer "You're not done, yet!" with "Ooops!" put true into tryAgain exit mouseup else put 1 into rLine put false into tryAgain repeat with r = 1 to the number of lines of cd fld "Our Answers" if line rLine of cd fld "Your Answers" is in line rLine of cd fld "Our Answers" then put true into okAnswer else put false into okAnswer end if if okAnswer then put true into line rline of cd fld "memoList" put true into item r of memolist else put false into line rline of cd fld "memolist" put false into item r of memolist end if add 1 to rLine end repeat end if end repeat if tryAgain is false then set cursor to hand hide cd btn "Check my answers" show cd fld "clicktocontinue" end if put "3" into testnumber repeat with i = 1 to the number of lines of cd fld "MemoList" put ("review" && i) into theButton set the hilite of cd btn theButton to true get line i of cd fld "MemoList" if it is true then put ("comment" && i && "true") into theComment show cd fld theComment else put ("comment" && i && "false") into theComment show cd fld theComment end if wait until the mouseclick set the hilite of cd btn theButton to false hide cd fld theComment end repeat hide cd fld "clicktocontinue" if cd fld "MemoList" contains "False" then answer "Do you want to try again?" with "Yes" or "No" if it is "Yes" then put empty into cd fld "memolist" put true into inProgress show cd btn "Check my Answers" send opencard exit mouseup else ScoreReview end if else ScoreReview end if end mouseUp -- part 24 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=118 top=113 right=130 bottom=216 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 1 ----- HyperTalk script ----- on mouseUp hide card field "instruction 1" toggleResponses end mouseUp -- part 25 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=128 top=159 right=177 bottom=289 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 2 ----- HyperTalk script ----- on mouseUp toggleResponses end mouseUp -- part 26 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=325 top=222 right=241 bottom=430 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: review 3 ----- HyperTalk script ----- on mouseUp toggleResponses end mouseUp -- part 29 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=32 top=194 right=275 bottom=318 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 1 false -- part 30 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=151 top=5 right=98 bottom=512 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 1 true -- part 31 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=2 top=2 right=82 bottom=339 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 2 false -- part 32 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=262 top=55 right=153 bottom=512 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 2 true -- part 34 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=74 top=248 right=329 bottom=350 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 3 false -- part 35 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=262 top=93 right=215 bottom=512 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 3 true -- part 36 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=11 top=108 right=190 bottom=319 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 4 false -- part 37 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=10 top=108 right=192 bottom=318 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 4 true -- part 39 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=8 top=126 right=205 bottom=314 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 5 false -- part 40 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=6 top=133 right=218 bottom=314 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 158 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: Comment 5 true -- part 41 (field) -- low flags: 81 -- high flags: 2004 -- rect: left=59 top=312 right=341 bottom=277 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 1 -- font id: 157 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: ClicktoContinue -- part 45 (field) -- low flags: 81 -- high flags: 0007 -- rect: left=0 top=20 right=331 bottom=129 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 156 -- text size: 14 -- style flags: 0 -- line height: 18 -- part name: instruction 1 ----- HyperTalk script ----- on mouseup hide me end mouseup -- part 48 (button) -- low flags: 00 -- high flags: 2000 -- rect: left=484 top=317 right=342 bottom=512 -- title width / last selected line: 0 -- icon id / first selected line: 18613 / 18613 -- text alignment: 1 -- font id: 0 -- text size: 12 -- style flags: 0 -- line height: 16 -- part name: return ----- HyperTalk script ----- on mouseUp go card "test 0" end mouseUp -- part contents for background part 10 ----- text ----- Compatability (Software) -- part contents for background part 4 ----- text ----- Macintosh Display Card 4•8 and 8•24 -- part contents for background part 5 ----- text ----- Training Evaluation -- part contents for card part 6 ----- text ----- virtually practically almost absolutely -- part contents for card part 8 ----- text ----- Only 10% of existing software There's virtually no software Non-QuickDraw -based programs Original Macintosh II software -- part contents for card part 9 ----- text ----- 6.0.5 or greater 5.0 or greater 7.0 or greater -- part contents for card part 10 ----- text ----- 10 20 30 50 -- part contents for card part 11 ----- text ----- three five ten 150 -- part contents for card part 14 ----- text ----- 1 2 1 -- part contents for card part 29 ----- text ----- No. Please take another look through the Features and Advantages section. -- part contents for card part 30 ----- text ----- You're absolutely correct. These display cards will work with virtually all applications on the market today. -- part contents for card part 31 ----- text ----- Not really. Recheck your answer. -- part contents for card part 32 ----- text ----- Yes. The number of programs that might not work with these cards is very small. -- part contents for card part 34 ----- text ----- No. This is an important detail that you should review. -- part contents for card part 35 ----- text ----- Correct! Any earlier version of the System will not work. 6.0.5 was written to take advantage of the capabilities of this card. -- part contents for card part 36 ----- text ----- You may need to study the Technology section more closely. -- part contents for card part 37 ----- text ----- You seem to have studied the Technology section well. -- part contents for card part 39 ----- text ----- Check your figures, this ratio is important to customers. -- part contents for card part 40 ----- text ----- Yes – the AMLCD is noticeably faster than other LCD screens. -- part contents for card part 41 ----- text ----- Click the mouse to continue. -- part contents for card part 45 ----- text ----- Instructions: (click on this text to hide it) 1. Click on the blank line. A list of choices appears 2. Click on the choice you want, it appears in the sentence. You can change any of your choices by clicking on it, then selecting another choice. 3. When you’ve completed the entries, click on the “Check my Answers” button. During the review, you’ll find out whether you made the correct choices. Afterwards, you can try again or go back to the menu for this section. -- part contents for background part 6 ----- text ----- The Macintosh Display Cards 4•8 and 8•24 will work with all Macintosh applications. does not work with these cards. This video card requires System .